home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d26 / ode25.arc / EULER.ODE < prev    next >
Encoding:
Text File  |  1990-10-22  |  130 b   |  9 lines

  1. # EULER.ODE
  2. # Exponential growth model.
  3.  
  4. # Set x initially to 1:
  5. x  = 1
  6.  
  7. # The rate of growth of x is equal to x:
  8. x' = x
  9.